PlaceWidgetAt
Type
statement
Summary
Add a child widget to the parent on the top or bottom layer
Syntax
place <mWidget> at ( bottom | top )
Description
Adds a the specified child object to the widget in which the place statement is used. Using the "top" (resp. "bottom") variant will cause mWidget to be placed on the layer above (resp. below) all previously placed widgets.
Parameters
Name | Type | Description |
---|---|---|
mWidget | The child widget object. |
Examples
variable tNavbar as Widget
put a new widget "com.livecode.widget.navbar" into tNavbar
place tNavbar at top